.additional-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 30px;
  background-color: #ffffff;
}

.additional-content2 {
  padding: 0px;
  text-align: center;
  line-height: 1.4;
}

.additional-content2 h1 {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-family: 'Jost', 'Arial';
}

.additional-content2 p {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 60px;
  margin-right: 60px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Jost', 'Arial';
  text-align: center;
  font-weight: bold;
}

.text-overlay {
  position: absolute;
  left: 0;
  width: 25%;
  padding: 20px;
  margin-left: 50px;
  box-sizing: border-box;
  color: #ffffff;
  opacity: 0;
  animation: fadeInAnimation 2s ease-in forwards;
  line-height: 20px;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.text-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 1;
}

.text-overlay h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 0.5;
  color: #212121;
}

.text-overlay p {
  font-size: 1rem;
  font-family: 'Jost', 'Arial';
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
}

.address {
  margin: 100px 0 0 0;
  width: 500px;
  animation: fadeInAnimation 2s ease-in forwards;
  position: absolute;
  left: 0;
  text-align: left;
  line-height: 50px;
  font-family: 'Rock Salt', 'Arial';
  margin-left: 90px;
}

.address h1 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 2.9rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 3.5rem;
}

.address h2 {
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
  line-height: 1.5rem;
}

.mission-section {
  padding: 75px;
  background-color: white;
}

.mission-section h1 {
  color: #641734;
  font-size: 1.4rem;
  font-family: "Platypi", "Arial";
}

.mission-section p {
  color: #000000;
  font-size: 1rem;
  font-family: "Jost", "Arial";
}

.mission-section h2 {
  color: #000000;
  font-size: 1rem;
  font-family: "Jost", "Arial";
  text-align: right;
  margin-right: 40px;
}

/* Media Queries for Mobile Devices */
@media (max-width: 1000px) {
  .additional-content {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .additional-content2 p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1rem;
  }

  .text-overlay {
    width: 90%;
    margin-left: 0;
    padding: 10px;
  }

  .text-overlay h1 {
    font-size: 2rem;
  }

  .text-overlay h2 {
    font-size: 1rem;
  }

  .text-overlay p {
    font-size: 0.9rem;
  }

  .address {
    width: 90%;
    /* Adjust banner width for mobile */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);
    /* Offset it by half its width to truly center */
    text-align: center;
    /* Center the text */
    margin-left: 0;
    /* Reset margin-left for mobile */
  }

  .address h1 {
    font-size: 2rem;
    /* Font size for mobile */
    line-height: 2.5rem;
    /* Adjust line height for mobile */
  }

  .address h2 {
    font-size: 0.9rem;
    /* Font size for mobile */
    line-height: 1.2rem;
    /* Adjust line height for mobile */
  }

  .mission-section {
    padding: 40px;
  }

  .mission-section h1 {
    font-size: 1.2rem;
  }

  .mission-section p {
    font-size: 0.9rem;
  }

  .mission-section h2 {
    font-size: 0.9rem;
    margin-right: 20px;
  }
}